slm arkadaşlar küçük bir yardıma ihtiyacım var ilgilenirseniz çok sevinirim.
1. Write a C program for processing a string of 80 symbols. Write a function that inputs the string; a function that displays the string; a function that find the counts of digits and count of other symbols.
2. write a C program for processing the array of n integer values (n<=50). write a function that inputs values into the array; a function that displays the array; a function that finds the average of negative numbers in range [a,b].
Napalım şimdi? İngilizcesini Türkçeye mi çevirelim yoksa biz mi yazalım? Sen nereye kadar yapabildiysen yaz buraya takıldığın yer de yardım alırsın.
her türlü yardımın faydası olur türkçeye çevirmek mümkünse yazmak :) c hakkında pek bir bilgilm yok daha yeni öğrenmeye başladım
quote:
Orijinalden alıntı: form
her türlü yardımın faydası olur türkçeye çevirmek mümkünse yazmak :)
başlığına ücreti mukabilinde diye ekleme yap. yazacak birileri de bulunur.
Ekrana yazı yazdıramıyor musun? Yapmayın bu kadar.
1 için şöyle bişi yaptım
#include "stdafx.h" #include <iostream> using namespace std; #include <conio.h>
int _tmain(int argc, _TCHAR* argv[]) { char ch, line[80]; int i, c, countdigits, countothersym; printf("\nEnter a line : \n");
for(i=0; i<80 && (c=getchar()) != '\n'; i++) line[i] = c; line[i] = '\0'; printf("Your string is : \n"); for(i=0; i<strlen(line); i++) putchar(line[i]); countdigits=0; countothersym=0; for(i=0; i<strlen(line); i++) if (line[i]>'0' && line[i]<'9') countdigits++; else countothersym++; printf("\nIn your line was found %d digits and %d other symbols",'\n', countdigits, countothersym);