December 18, 2018
Print the numbers 1 to the N
Threads: Enter an integer n. Print out the number from 1 to the N.
Input: A single integer n
Output: A line consists of numbers separated by spaces from 1 to the N.
For example:
input: 3 output: 1 2 3
You are not logged in? Log in to Submit Now!
9 Comments
Add a Comment
You must be logged in to post a comment.
1. Accepted
2. Wrong Answer
Test Input:
5
Test Output:
1 2 3 4 5
Your Output:
1
2
3
4
5
3. Wrong Answer
Test Input:
10
Test Output:
1 2 3 4 5 6 7 8 9 10
Your Output:
1
2
3
4
5
6
7
8
9
10
ai biết cách cho python in ra mà nó trên một hàng với …cảm ơn!!
Dùng print(str, end=”) bạn nhé.
bỏ \n trong printf và thay bằng dấu cách bạn nhé
#include
int main()
{
int n;
scanf(“%d”,&n);
for (int i = 1; i <= n; i++)
{
printf("%d ",i);
}
return 0;
}
sao lại sai
Bạn `include` không cái gì
ở trên máy thì nhập ra được không hiểu trên này sao ko nhập ra đc
#include
int main()
{
int n,i;
scanf(“%d”,&n);
for(i=1;i<=n;i++)
printf(" %d\t",i);
return 0;
}
Trên C chạy ra đc sao trê này lại wrong answer?
Bạn xem sự khác nhau giữa your output và Test output nhé.
printf(“%d “,i); //*Khoảng trang sau %d nha ban*//