Home › C Program C - Hình Chữ Nhật Đặc in C Program published on tháng 6 24, 2021 leave a reply #include<stdio.h>int main(){ int m, n, i, j; printf("Nhap n hang: "); scanf("%d", &n); printf("Nhap m cot: "); scanf("%d", &m); for(i = 1; i <= n; i++) { for(j = 1; j <= m; j++) printf("* "); printf("\n"); } return 0;} Previous Post Next Post post written by: admin Related PostsWrite a C program to check whether a triangle is Equilateral, Isosceles or Scalene. Question:Answer:CODE:#include<stdio.h> int main(){ int a,b,c; printf("Input thre… C - Hình Thoi #2 Question:Needs to be a C program. Write a function displayRhombus(diagonal, fillCha… C - Hình Chữ Nhật Đặc#include<stdio.h>int main(){ int m, n, i, j; printf("Nhap n hang: "); scanf("%d", &n); pri… Write a C Program to find all Roots of a Quadratic Equation Question:Write a C Program to find all Roots of a Quadratic EquationAnswer:The standard form o…
0 Comments: