photo

d bhaskar


Last seen: 1 year ago Active since 2023

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
Develop a program to display outputs based on inputs
clc clear all a=input('Enter Age in Years (1 to 120)='); if(a<17) fprintf("You can not Vote'); fprintf('Please take Your Vot...

1 year ago | 0

| accepted

Answered
How to create an array with user inputs?
clc clear all n=2; m=2; for i=1:n for j=1:m fprintf('Enter a(%d,%d)=',i,j); a(i,j)=input(''); end end

1 year ago | 0

Answered
while 1 and fget1 loop.
a=1; while 1 a=a+1; if(a>100) break end end

1 year ago | 0