▼ กำลังโหลดข้อมูล... ▼
แสดงความคิดเห็น
คุณสามารถแสดงความคิดเห็นกับกระทู้นี้ได้ด้วยการเข้าสู่ระบบ
กระทู้ที่คุณอาจสนใจ
ช่วยแก้โปรแกรมภาษาซี หน่อยสิค้ะ
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
main()
{
char name;
char conn;
start:
printf("What is your name?: ");
scanf("%s",&name);
สมาชิกหมายเลข 1459434
เติมสกอร์โรเเกรมยังไงคะ
ถ้าเราอยากเติมสกอร์นับเเต้มด้วยควรทำยังไงคะ
#include<stdio.h>
#include<conio.h>
#include<time.h>
#include<stdlib.h>
main()
{
int a=0,com=0;
สมาชิกหมายเลข 5267783
ถามเรื่อง ภาษาซี
#include<stdio.h>
#include<conio.h>
#include<math.h>
int main()
{
clrscr;
float r;
printf(" Input value of Radius : ");
scanf("%f", &r);
printf("\n
สมาชิกหมายเลข 4076209
เขียนโปรแกรมยกกำลัง
#include <stdio.h>
#include <conio.h>
int main(void)
{
int i;
float Sum=0;
for (i=1;i<=100;i++)
................................................
printf("Sum fo 1 squares to 10
สมาชิกหมายเลข 3487279
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ
C (ภาษาคอมพิวเตอร์)
C++
ช่วยเขียนflowchart ของ code นี้หน่อยค่ะ __/\___
#include <conio.h>
main(){
float in_key;
int p=0,z=0,n=0,c=1;
for(c=1;c<=10;c++){
printf("Enter avalue %d : ",c);
scanf("%f",&in_key);
if(in_key<0.)
n++;
else if(in_key==0.)
z++;
else
p++;
}
printf("---------------------\n");
printf("NEGATIVE=%d \n",n);
printf("POSITIVE=%d \n",p);
printf("ZERO=%d \n",z);
getch();
}