Home
C
C++
JAVA
JavaScript
Mathematics
Data Structure
UVa Solutions
URI Solutions
Codeforces
Hackerrank
Algorithms
Number Theory
Physics
Programming Contest
Programming Q&A
Softwares
Projects
My Blog
About
Contact
Sunday, February 21, 2016
URI 1078 - Multiplication Table
#include <stdio.h>
int main() {
int i,N;
scanf("%d",&N);
for(i=1; i<=10; i++){
printf("%d x %d = %d\n",i,N,i * N);
}
return 0;
}
No comments:
Post a Comment
Thank you for commenting. Please wait for response :)
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Thank you for commenting. Please wait for response :)